home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / ODF Release 3 / ODFDev / Form / Sources / Binding.k next >
Encoding:
Text File  |  1996-12-16  |  1.1 KB  |  40 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                Binding.k
  4. //    Release Version:    $ ODF 3 $
  5. //
  6. //    Copyright:            (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10.  
  11. #ifndef BINDING_K
  12. #define BINDING_K
  13.  
  14. // ----- Kind
  15. #define kODFFormKind "+//ISO 9070/ANSI::113722::US::CI LABS::Apple:ODFExamples:Kind:ODFForm"
  16.  
  17. // ----- Class ID
  18. #define kODFFormEditor "ODFExamples::ODFForm"
  19.  
  20. // ----- Editor User String
  21. #define kODFFormEditorUserString "ODFForm R3"
  22.  
  23. // ----- Kind User String
  24. #define kODFFormKindUserString "ODF Form Example"
  25.  
  26. // ----- Form OSType
  27. #define kODFFormPartEditorOSType     'odfF'
  28. #define kODFFormDocumentOSType         'DFFD'
  29. #define kODFFormStationeryOSType     'sFFD'
  30.  
  31. // ----- NMAP ID
  32. #define kKindCategoryMapID            128
  33. #define kEditorKindMapID            kKindCategoryMapID + 1
  34. #define kEditorUserStringMapID        kEditorKindMapID + 1
  35. #define kKindUserStringMapID        kEditorUserStringMapID + 1
  36. #define kOldMacOSTypeMapID            kKindUserStringMapID + 1
  37.  
  38. #endif
  39.  
  40.